home *** CD-ROM | disk | FTP | other *** search
/ Commodore 64 Scene Diskmags Assortment / Commodore_CEE_Vol._1_Issue_05_1995_Jack_Vander_White_Disk_1_of_3_Side_A.d64 / drive bit 2 < prev    next >
Text File  |  2023-02-26  |  3KB  |  95 lines

  1. Adding additional HD's to the Lt. Kernal
  2.  
  3. From: Eric Pass
  4.  
  5. Here's another old comp.sys.cbm post on adding additional drives to the LTK on the Commodores , again for the benefit of new readers of the group and the increased prevalence of HDs.
  6.  
  7. I don't own a LTK for my C64 or 128 so again, this is all the info I have.
  8.  
  9. TEXT IMPORT BEGIN
  10. =================
  11.  
  12. Here are some notes on modifying a Lt. Kernal 7.1 SYSGEN disk to acommodate additional SCSI hard drives. I have only tested SEAGATE SCSI mechanisms. You will need to low level format these drives on an IBM or AMIGA. I used the SUPRA WordSync (Amiga) to low level format the SEAGATE SCSI drives.
  13.  
  14.  
  15. The following GRID is from a 40/80/80 SYSGEN configured for a friend.
  16.  
  17. Using a disk/sector editor on the SYSGEN disk. Starting at Position the numbers are:
  18.  
  19. # 14  15  16  17  18  19
  20.  
  21.   80  00  1A  06  02  60   (Seagate ST157N ,  40 MB )
  22.   80  00  1A  07  03  8A   (Seagate ST1096N , 80 MB )
  23.   80  00  1A  07  03  8A   (Seagate ST1096N , 80 MB )
  24.   ^   ^   ^   ^   ^   ^
  25.   {CBM--}   {CBM--}   {CBM--}   {CBM--}   {CBM--}   +--- Number cylinders ( Low byte )
  26.   {CBM--}   {CBM--}   {CBM--}   {CBM--}   +------- Number cylinders ( Hi byte )
  27.   {CBM--}   {CBM--}   {CBM--}   +----------- Number of heads
  28.   {CBM--}   {CBM--}   +--------------- Sectors per track
  29.   {CBM--}   +------------------- Step period
  30.   +----------------------- Drive type 80=Imbedded SCSI
  31.  
  32. Low/High Byte Explanation , 8 bits = 1 byte
  33.  
  34. Low Byte
  35.  
  36.     1     1     1     1     1     1     1     1     Bits
  37. ------------------------------------------------
  38.      7     6     5     4     3     2     1     0                   nth
  39.     2     2     2     2     2     2     2     2     What it means 2
  40. ------------------------------------------------
  41.   128    64    32    16     8     4     2     1     Decimal Sum = 255
  42.  
  43. High Byte
  44.  
  45.     1     1     1     1     1     1     1     1     Bits
  46. ------------------------------------------------
  47.      15    14    13    12    11    10    9     8                   nth
  48.     2     2     2     2     2     2     2     2     What it means 2
  49. ------------------------------------------------
  50. 32768 16384  8192  4096  2048  1024   512   256     Decimal Sum = 65280
  51.  
  52.  
  53. Seagate ST1096N drive relevant specs:
  54.  
  55. Parameter  DEC   HEX  HI Byte , LO Byte      
  56.  
  57. cylinders  906        768     , 128       (Decimal break down , sum=total)   
  58.  (binary)             00000011, 10001010
  59.  (hex)                03      , 8A
  60. sect/track  26   1A    
  61. heads        7   07    
  62.  
  63. Maxtor 245 drive relevant specs:
  64.  
  65. Parameter  DEC   HEX  HI Byte , LO Byte      
  66.  
  67. cylinders 1944        1792    , 152       (Decimal break down , sum=total)   
  68.  (binary)             00000111, 10011000
  69.  (hex)                07      , 98
  70. sect/track  31   1F    
  71. heads        4   04    
  72.  
  73. Use the following GRID for a hypothetical 40/245 SYSGEN.
  74.  
  75. Starting at Position the numbers are:
  76.  
  77. # 14  15  16  17  18  19
  78.  
  79.   80  00  1A  06  02  60   (Seagate 40)
  80.   80  00  1F  04  07  98   (Maxtor 245)
  81.   ^   ^   ^   ^   ^   ^
  82.   {CBM--}   {CBM--}   {CBM--}   {CBM--}   {CBM--}   +--- Number cylinders ( Low byte )
  83.   {CBM--}   {CBM--}   {CBM--}   {CBM--}   +------- Number cylinders ( Hi byte )
  84.   {CBM--}   {CBM--}   {CBM--}   +----------- Number of heads
  85.   {CBM--}   {CBM--}   +--------------- Sectors per track
  86.   {CBM--}   +------------------- Step period
  87.   +----------------------- Drive type 80=Imbedded SCSI
  88.  
  89. TEXT IMPORT END
  90. ===============
  91.  
  92. --------------
  93.  
  94.  
  95.